Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633461 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/183 - Steal Diamond Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/183 - Steal Diamond Game/style.css
141 Views
0 Comments
grid {
display: grid;
grid: 300px/400px;
margin: 10px auto 0;
position: relative;
cursor: pointer;
}
grid > * {
index.html cody/swapnilsparsh/30DaysOfJavaScript/183 - Steal Diamond Game/index.html
347 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Steal The Diamond</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/183 - Steal Diamond Game/script.js
134 Views
0 Comments
document.querySelector('body').addEventListener('mousemove', eyeBall);

function eyeBall() {
let eye = document.querySelectorAll('.eye');

eye.forEach( eye => {
let x = (eye.getBoundingClientRect().left) + (eye.clientWidth / 2);
let y = (eye.getBoundingClientRect().top) + (eye.clientHeight / 2);